翻訳と辞書
Words near each other
・ Xrobb l-Għaġin Tower
・ Xroshtag and Padvaxtag
・ XrossMediaBar
・ XRS Corporation
・ XRT
・ XRuby
・ XRumer
・ XRX
・ XRX (web application architecture)
・ XRY
・ XRY (software)
・ XS
・ XS (comics)
・ XS (EVS)
・ XS (manhwa)
XS (Perl)
・ XS (radio)
・ XS (video game)
・ XS All Areas – The Greatest Hits
・ XS Cargo
・ XS Games
・ XS International
・ XS Latin
・ XS Malarkey
・ Xs on Your Eyes
・ XS Platinum
・ XS Software
・ XS-1 (spacecraft)
・ XS1
・ Xs3p


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

XS (Perl) : ウィキペディア英語版
XS (Perl)
XS is an interface through which a program written in the Perl programming language can call a C or C++ language subroutine. The letters stand for eXternal Subroutine, or xsub, where ''external'' means external to Perl, i.e. written in some other language.
It may be desirable for a Perl program to invoke a C subroutine in order to handle very CPU or memory intensive tasks, to interface with hardware or low-level system facilities, or to make use of existing C subroutine libraries.
The Perl interpreter is a C program, so in principle there is no obstacle to calling from Perl to C. However, the XS interface is complex, and using it requires some understanding of the interpreter. The earliest reference on the subject was the (perlguts ) POD, the word ''guts'' suggesting the highly technical nature of the material.
Subroutine libraries in Perl are called ''modules'', and modules that contain xsubs are called ''XS modules''. Perl provides a framework for developing, packaging, distributing, and installing modules. To create an XS module, h2xs is first used to create an empty module. Next, C subroutines are added, and the calling interfaces to the C subroutines are specified with a specialized glue language (also referred to as XS). Finally, the module is compiled, tested, and installed with make.
Once an XS module is installed, it can be loaded into a Perl program with a ''use'' statement, like an ordinary Perl module. Once the module is loaded, the C subroutines can be called from Perl code, as if they were written in Perl.
XS modules are not without drawbacks. They are difficult to write and maintain, and they may only be installed if a C compiler and the header files that the Perl interpreter was compiled against are available. Also, new versions of Perl may break binary compatibility; if this happens, all XS modules must be recompiled.
It is also possible to write XS modules that wrap C++ code. Doing so is mostly a matter of configuring the module build system.〔(【引用サイトリンク】title=Gluing C++ And Perl Together )
==See also==

*SWIG, an alternative to XS which also supports calling C and C++ functions from several other languages.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「XS (Perl)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.